body {
  margin: 0;
  height: 100%;
}
h3 {
font-size: calc(20px + 14 * (100vw / 1280));
}
@media (max-width: 767px){
h3 {
font-size: calc(20px + (14 + 14 * 0.7) * ((100vw - 320px) / 1280)) !important;
}
}
p {
font-size: calc(5px + 14 * (100vw / 1280));
}
@media (max-width: 767px){
p {
font-size: calc(15px + (14 + 14 * 0.7) * ((100vw - 320px) / 1280)) !important;
}
}
a {
font-size: calc(14px + 4 * (100vw / 1280));
}
@media (max-width: 767px){
a {
font-size: calc(14px + (4 + 4 * 0.7) * ((100vw - 320px) / 1280)) !important;
}
}
.container{
  min-height: 100%;
  display:flex;
  flex-direction: column;
}
.main{
  flex: 1 1 auto;
}
.footer{
  display: flex;
}
.topnav {
  overflow: hidden;
  background: radial-gradient(ellipse at center, #fffeea 0%, #fffeea 35%, #b7e8eb 100%);
}

.active {
  background-color: #257b8f;
  color: #fff !important;
}

.topnav a {
    float: right;
    display: block;
    color: #000000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.topnav a:not(:first-child):hover {
  background-color: #ddd;
  color: black;
}

.topnav .icon {
  display: none;
}
.img-banner{
  width:100%;
}
@media screen and (max-width: 950px) {
  .banner {
    flex-direction: column;
}
.img-banner {
    width: 65%;
    margin: 30px 0 0 0;
}
}
@media screen and (max-width: 785px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 785px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a:first-child {display: none;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
.foot-end{
   margin: 55px 30px 0 30px;
   color: #7487A2;
   font-size: 14px;
   font-family: 'Roboto',Arial,sans-serif;
}

.modal {
    position: fixed; /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5); /* цвет фона */
    z-index: 1050;
    opacity: 0; /* по умолчанию модальное окно прозрачно */
    -webkit-transition: opacity 200ms ease-in; 
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in; /* анимация перехода */
    pointer-events: none; /* элемент невидим для событий мыши */
    margin: 0;
    padding: 0;
}
/* при отображении модального окно */
.modal:target {
    opacity: 1; /* делаем окно видимым */
	  pointer-events: auto; /* элемент видим для событий мыши */
    overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
}
/* ширина модального окна и его отступы от экрана */
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 800px;
      margin: 30px auto; /* для отображения модального окна по центру */
  }
}
/* свойства для блока, содержащего контент модального окна */ 
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
@media (min-width: 768px) {
  .modal-content {
      -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
      box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }
}
/* свойства для заголовка модального окна */
.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eceeef;
}
.modal-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}
/* свойства для кнопки "Закрыть" */
.close {
    float: right;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;
}
/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75;
}
/* свойства для блока, содержащего основное содержимое окна */
.modal-body {
  position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
    overflow: auto;
}
.modalZaiav {
    position: fixed; /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5); /* цвет фона */
    z-index: 1050;
    opacity: 0; /* по умолчанию модальное окно прозрачно */
    -webkit-transition: opacity 200ms ease-in; 
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in; /* анимация перехода */
    pointer-events: none; /* элемент невидим для событий мыши */
    margin: 0;
    padding: 0;
}
/* при отображении модального окно */
.modalZaiav:target {
    opacity: 1; /* делаем окно видимым */
	  pointer-events: auto; /* элемент видим для событий мыши */
    overflow-y: auto; /* добавляем прокрутку по y, когда элемент не помещается на страницу */
}
/* ширина модального окна и его отступы от экрана */
.modal-dialogZaiav {
    position: relative;
    width: auto;
    margin: 10px;
}
@media (min-width: 576px) {
  .modal-dialogZaiav {
      max-width: 500px;
      margin: 30px auto; /* для отображения модального окна по центру */
  }
}
/* свойства для блока, содержащего контент модального окна */ 
.modal-contentZaiav {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
@media (min-width: 768px) {
  .modal-contentZaiav {
      -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
      box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }
}
/* свойства для заголовка модального окна */
.modal-headerZaiav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: right;
    padding: 15px;
}
.modal-titleZaiav {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}
/* свойства для кнопки "Закрыть" */
.closeZaiav {
    float: right;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;
}
/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
.closeZaiav:focus, .closeZaiav:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75;
}
/* свойства для блока, содержащего основное содержимое окна */
.modal-bodyZaiav {
  position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
    overflow: auto;
}
.banner{
  background: radial-gradient(ellipse at center, #fffeea 0%, #fffeea 35%, #b7e8eb 100%);
}
.p-bann{
    color: #000000;
    font-size: 32px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.3;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.p-bann-dop{
    color: #000000;
    font-size: 20px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.call_back_butt{
    width: 165px;
    height: 35px;
    display: block;
    text-align: center;
    padding-top: 10px;
    border-radius: 5%;
    font-size: 17px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    transition: all 500ms ease; 
    text-decoration: none;
    color: #fff;
    background: #257b8f;
}
.call_back_butt:hover{
width: 175px;
    height: 37px;
}
.a-bann{
    text-decoration: none;
    color: #fff;
    background: #257b8f;
    padding: 25px 45px;
    border-radius: 5%;
    font-size: 17px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    transition: all 500ms ease; 
}
.a-bann:hover{
   padding: 30px 50px;
}
.a-sub{
   text-decoration: none;
    color: #fff;
    background: #257b8f;
    padding: 25px 45px;
    border-radius: 5%;
    font-size: 17px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    transition: all 500ms ease;
    cursor: pointer;
    border: none;
}
.a-sub2{
   text-decoration: none;
    color: #fff;
    background: #d60101;
    padding: 10px 0;
    border-radius: 5%;
    font-size: 17px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    transition: all 500ms ease;
    cursor: pointer;
    border: none;
}
.zaiavHead{
   margin-bottom: 24px;
   text-align: center;
}
.zaiavHead h3{
   margin-bottom: 11px;
   font-size: 36px;
   line-height: 1.23;
   font-family: 'Arkada',Arial,sans-serif;
   font-weight: 600;
   color: #000;
}
.zaiavHead p{
   font-size: 16px;
   line-height: 1.55;
   font-family: 'Arkada',Arial,sans-serif;
   font-weight: 300;
   color: #000;
}
.zaiavName{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
}
.zaiavPhone{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
}
.zaiavName2{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
width: 50%;
}
.zaiavPhone2{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
width: 50%;
}
.zaiavUslug{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
}
.zaiavButt{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
}
.zaiavButt2{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
width: 25%;
}

@media (max-width: 900px) {
.zaiavName2{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
width: 100%;
}
.zaiavPhone2{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
width: 100%;
}
  .zaiavButt2{
   display: flex;
   margin-bottom: 24px;
   text-align: center;
   flex-direction: column;
width: 100%;
}
}
.zaiavFoot{
   margin-bottom: 24px;
   text-align: center;
}
.modal-bodyZaiav label{
    text-align: left;
    padding-bottom: 5px;
    font-size: 20px;
    line-height: 1.55;
    font-family: 'Arkada',Arial,sans-serif;
    font-weight: 300;
    color: #000;
}
.bodyZaiav20 label{
    text-align: left;
    padding-bottom: 5px;
    font-size: 20px;
    line-height: 1.55;
    font-family: 'Arkada',Arial,sans-serif;
    font-weight: 300;
    color: #000;
}
.zaiavName input{
color: #000000;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: transparent;
    -webkit-appearance: none;
    margin: 0;
    font-size: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    font-family: 'Arkada',Arial,sans-serif;
}
.zaiavPhone input{
color: #000000;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: transparent;
    -webkit-appearance: none;
    margin: 0;
    font-size: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    font-family: 'Arkada',Arial,sans-serif;
}
.zaiavName2 input{
color: #000000;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-appearance: none;
    margin: 0;
    font-size: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    font-family: 'Arkada',Arial,sans-serif;
}
.zaiavPhone2 input{
color: #000000;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-appearance: none;
    margin: 0;
    font-size: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    font-family: 'Arkada',Arial,sans-serif;
}
.zaiavUslug select{
color: #000000;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: transparent;
    margin: 0;
    font-size: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    font-family: 'Arkada',Arial,sans-serif;
}
.zaiavUslug textarea{
color: #000000;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: transparent;
    margin: 0;
    font-size: 100%;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    font-family: 'Arkada',Arial,sans-serif;
}
.slidHead{
padding: 0 55px;
text-align: center;
}
.regTeh{
    height: calc(100% - 20px);
  width: calc(100% - 20px);
  margin: 0;
  padding: 10px;
  display: flex;
  background: #f2f2f2;
  color: rgba(0,0,0,.87);
  font-family: 'Roboto', sans-serif;
}
.regTeh-row div {
    text-align: center;
    width: 500px;
}
.regTeh-row h3 {
    color: #000000;
    font-size: 26px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.regTeh-row p {
    color: #000000;
    font-size: 20px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.3;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
@media (max-width: 905px) {
 .regTeh{
    flex-direction: column;
}
.regTeh-row div {
    text-align: center;
    width: auto;
}
}
.bodyZaiav20{
margin: 35px auto;
    width: 60%;
background: #efeeef;
    padding: 10px 25px;
}
.bodyZaiav20 img{
width:100%;
}
.bodyZaiav20 h3{
color: #000000;
    font-size: 30px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.bodyZaiav-cont2{
    width: 100%;
    padding: 0px 25px;
}
.regTeh2{
width: 90%;
margin-left: auto;
margin-right: auto;
}
.regTeh-row2{
display: flex;
justify-content: center;
}
.regTeh-row2 img{
width:180px;
height:228px;
}
.regTehDV2{
margin: 0 0 0 25px;
}
.regTeh-row2 div {
    text-align: center;
    width: 500px;
}
.regTeh-row2 h3 {
    color: #000000;
    font-size: 26px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.regTeh-row2 p {
    color: #000000;
    font-size: 20px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.3;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
@media (max-width: 1050px) {
 .regTeh-row2{
    flex-direction: column;
}
.regTehDV2{
margin: 0 0 0 0;
}
}
@media (max-width: 450px) {
 .regTeh-row2 div {
    width: 300px;
}
}
.UslugCen{
display: flex;
    justify-content: center;
    margin: 40px 0px;
}
.UslugCen div{
    background-size: 100%;
    width: 60%;
    padding: 40px 50px;
}
.UslugCen a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    background: #d60101;
    padding: 10px 25px;
}
.UslugCen p {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.3;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.UslugCen h3 {
    color: #ffffff;
    font-size: 30px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}
.regTeh3{
margin-left: auto;
margin-right: auto;
}
.regTeh-row3{
display: flex;
justify-content: center;
}
.regTehDV3{
margin: 0 0 0 25px;
}
.regTeh-row3 div {
    width: 500px;
position: relative;
}
.regTeh-row3 h3 {
    color: #000000;
    font-size: 26px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 500;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    position: absolute;
    top: 0px;
    left: 25px;
}
.regTeh-row3 span {
    color: #000000;
    font-size: 20px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.3;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
position: absolute;
    top: 65px;
    left: 15px;
}
@media (max-width: 767px){
.regTeh-row3 span {
font-size: calc(9px + (11 + 11 * 0.7) * ((100vw - 320px) / 1280)) !important;
}
}
.regTeh-row3 a {
    position: absolute;
    bottom: 10px;
    left: 45px;
    text-decoration: none;
    color: #ffffff;
    background: #d60101;
    font-size: 17px;
    font-family: 'Arkada',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    padding: 5px 10px;
}
.regTeh-row3 img {
    width: 100%;
}
@media (max-width: 1050px) {
 .regTeh-row3{
    flex-direction: column;
}
.regTehDV3{
margin: 0 0 0 0;
}
}
@media (max-width: 450px) {
 .regTeh-row3 div {
    width: 300px;
}
}
.regTeh-rowPart{
display: flex;
justify-content: center;
}
@media (max-width: 930px) {
 .regTeh-rowPart{
flex-direction: column;
}
}
.regTeh-rowPart img{
    width: 300px;
    height: 74px;
}
.regTeh-rowPart div {
    text-align: center;
    margin: 20px 0 0 25px;
}

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
.social a {
    text-align: center;
    width: 48px;
    height: 48px;
    float: left;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15), inset 0 0 50px rgba(0,0,0,0.1);
    border-radius: 24px;
    margin: 0 10px 10px 0;
    padding: 6px;
    color: #000;
}
.telegram a:hover {background: #249bd7; color: #fff;}
.whatsapp a:hover {background: #50b154; color: #fff;}
.viber a:hover {background: #7e13a1; color: #fff;}
@media (max-width: 890px) {
 .social a {
width: 35px;
    height: 35px;
}
}
.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
}

.wave {
  background: url(https://cdn.kcak11.com/codepen_assets/wave_animation/wave.svg) repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%,
	100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
.endWave{
	display:none;
}
{* Слик слайдер *}
    .slick-slider{
        margin: 20px 0;
    }
    
    {* Ограничевающая оболочка *}
    .slick-list{
        overflow: hidden;
        text-align: center;
    }
    
    {* Лента слайдов *}
    .slick-track{
        display: flex;
        align-items: center;
    }
    
    {* Слайд *}
    .slick-slide{}
    
    {* Слайд активный *}
    .slick-slide.slick-active{}
    
    {* Слайд основной *}
    .slick-slide.slick-current{}
    
    {* Слайд по центру *}
    .slick-slide.slick-center{}
    
    {* Стрелка *}
    .slick-arrow{}
    
    {* Стрелка влево *}
    .slick-arrow.slick-prev{}
    
    {* Стрелка вправо *}
    .slick-arrow.slick-next{}
    
    {* Стрелка не активная *}
    .slick-arrow.slick-disabled{}
    
    {* Точки *}
    .slick-dots{}
    .slick-dots li{}
    .slick-dots button{}
    
    {* Конкретный слайдер *}
    .slider {
        position:relative;
        padding: 0px 100px;
    }
    @media screen and (max-width: 1697px){
        .slider {
        position:relative;
        padding: 0px 30px;
    }
    }
@media screen and (max-width: 800px){
.slider .slider__item{
        width: 100%;
    }
    .slider .slider__item img{
        width: 100%;
    }
.accordion{
width: 99% !important;
}
}
@media screen and (max-width: 480px){
.box-title-lh20 {
    line-height: 20px !important;
}
.regTeh{
font-size:11px;
}
.social_icon{
margin-left:11% !important;
}
}
.social_icon{
margin-left:30%;
}
     @media screen and (max-width: 400px){
     .slider {
        position:relative;
        padding: 0;
    }
    .slider .slick-arrow{
        position:absolute;
        top:50%;
        z-index:10;
        font-size: 0;
        width: 15px;
        height: 15px;
        box-shadow:none;
    }
    }
    .slider .slider__item{
        
    }
    .slider .slider__item img{
        
    }
    .slider .slick-arrow{
        position:absolute;
        top:35%;
        z-index:10;
        font-size: 0;
        width: 30px;
        height: 30px;
        box-shadow:none;
    }
    .slider .slick-arrow.slick-prev{
        left:20px;
    border: none;
cursor: pointer;
        background: url('../img/icons8-shevron-vlevo-48.png') 0 0 / 100% no-repeat;
    }
    .slider .slick-arrow.slick-next{
        right:20px;
    border: none;
cursor: pointer;
        background: url('../img/icons8-shevron-vpravo-48.png') 0 0 / 100% no-repeat;
    }
    .slider .slick-dots{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slider .slick-dots li{
        list-style: none;
        margin: 0px 2px;
    }
    .slider .slick-dots button{
        font-size:0;
        width:15px;
        height:15px;
        background-color: #fff;
        border: 1px solid #DDD8D4;
        box-shadow:none;
        border-radius: 50%;
    }
    .slider .slick-dots li.slick-active button{
        background-color: #257b8f;
        border: 1px solid  #DDD8D4;
    }
    .slider .slick-dots li button:hover{
        background-color: #257b8f;
        border: 1px solid  #DDD8D4;
    }
    .slider__item {}
.accordion {
  margin: auto;
  width: 60%;
}
.accordion input {
  display: none;
}
.box {
  position: relative;
  background: white;
    height: 64px;
    transition: all .15s ease-in-out;
}
.box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    box-shadow: 0 -1px 0 #e5e5e5,0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
}
header.box {
  background: #257b8f;
  z-index: 100;
  cursor: initial;
  box-shadow: 0 -1px 0 #e5e5e5,0 0 2px -2px rgba(0,0,0,.12),0 2px 4px -4px rgba(0,0,0,.24);
}
header .box-title {
text-align:center;
  margin: 0;
  font-weight: normal;
  font-size: 16pt;
  color: white;
  cursor: initial;
}
.box-title {
  width: calc(100% - 40px);
  height: 64px;
  line-height: 64px;
  padding: 0 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;
}
.box-content {
  width: calc(100% - 40px);
  padding: 30px 20px;
  font-size: 11pt;
  color: rgba(0,0,0,.54);
  display: none;
}
.box-close {
  position: absolute;
  height: 64px;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}
input:checked + .box {
  height: auto;
  margin: 16px 0;
    box-shadow: 0 0 6px rgba(0,0,0,.16),0 6px 12px rgba(0,0,0,.32);
}
input:checked + .box .box-title {
  border-bottom: 1px solid rgba(0,0,0,.18);
}
input:checked + .box .box-content,
input:checked + .box .box-close {
  display: inline-block;
}
.arrows section .box-title {
  padding-left: 44px;
  width: calc(100% - 64px);
}
.arrows section .box-title:before {
  position: absolute;
  display: block;
  content: '\203a';
  font-size: 18pt;
  left: 20px;
  top: -2px;
  transition: transform .15s ease-in-out;
  color: rgba(0,0,0,.54);
}
input:checked + section.box .box-title:before {
  transform: rotate(90deg);
}
.slider__item div{
    width: 90%;
    height: 250px;
    border: 1px solid #257b8f;
    margin-left: auto;
    margin-right: auto;
    background: #edfffd;
    box-shadow: 0px 0px 0px 2px #257b8f, 0px 2px 4px #257b8f, 0px 4px 8px #257b8f, 0px 8px 16px #257b8f;
}
.slider__item h3{
    display: flex;
    width: 75px;
    height: 75px;
    margin-left: auto;
    margin-right: auto;
    background: #257b8f;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #fff;
}